@import "nav.css";
@import "imgtrailer.css";
@import "scrollbar.css";

  body{
    margin: 0%;
    background-color: #000000;
  }
  
  
  div#conteudo{
    transform: translate(0, 33vw);
    font-size: larger;
    font-family:Arial, Helvetica, sans-serif;
    position: absolute;
    z-index: 3;
    width: 97.5vw;
  }
  
  div#conteudo>p{
    margin-left: 1rem;
    color: white;
    font-size: 2rem;
  }
  
  div#conteudo>div{
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    margin-left: 1rem;
    margin-right: 0.25rem;
    margin-bottom: 3rem;
    height: 16rem;
    background: rgba(255, 255, 255, 0.288);
    padding: 0.5rem;
  }
  
  
  div.itens{
    margin: 0.3rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    height: 11rem;
    padding: 1rem;
    background:rgb(236, 241, 255);
    border: 2px solid black;
    box-shadow: 3px 3px 3px black;
  }

  div.name{
    text-align: center;
  }

  div.itens>a>img{
    height: 6rem;
    margin-bottom: 1rem;
    z-index: 2;
    filter: drop-shadow( rgb(84, 90, 187) 7px 7px 2px);
  }

  div.itens:hover{
    transform: scale(115%);
    background: linear-gradient(rgba(174, 0, 255, 0.993), rgb(236, 241, 255),rgb(236, 241, 255));
  }

  @media (max-width: 768px) {
    div#conteudo{
      transform: translate(0, 150vw);
    }
  }